/* ============================
   HAMBURGER ICON
   ============================ */
.menu-toggle {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    cursor: pointer;
}

.menu-toggle::before {
    content: "\2630";
    font-size: 28px;
    color: #141617;
}

@media (min-width: 1025px) {
    .menu-toggle {
        display: none;
    }
}

/* ============================
   MENU MOBILE (LIVELLO 1)
   ============================ */
@media (max-width: 1024px) {

    .top-menu.mobile {
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #f5f5f5;
        overflow-y: auto;
        padding-top: 60px;
        box-shadow: 2px 0 20px rgba(0,0,0,0.15);
        transform: translateX(-100%);
        transition: transform .35s ease;
        z-index: 99999;
    }

    .top-menu.mobile.is-open {
        transform: translateX(0);
    }
}

/* Porta SOLO il menu mobile sopra la head */
.top-menu.mobile {
    position: fixed !important;
    z-index: 99999999 !important; /* sopra header */
}

/* Porta il subpanel sopra il menu */
.mobile-subpanel {
    position: fixed !important;
    z-index: 100000000 !important;
}

/* Porta l’overlay sotto menu e subpanel */
.mobile-overlay {
    position: fixed !important;
    z-index: 99999998 !important;
}

/* Abbassa la head che stava schiacciando tutto */
.header,
.header-upper,
.header-lower,
.header-menu {
    position: relative !important;
    z-index: 1 !important;
}
/* ============================
   SUBPANEL (LIVELLO 2) — DA SINISTRA
   ============================ */
@media (max-width: 1024px) {

    .mobile-subpanel {
        position: fixed;
        top: 0;
        left: -80%; /* parte fuori a sinistra */
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        overflow-y: auto;
        padding-top: 60px;
        box-shadow: 2px 0 20px rgba(0,0,0,0.15);
        transition: left .35s ease;
        z-index: 100000; /* sopra il menu */
    }

    .mobile-subpanel.open {
        left: 0; /* entra da sinistra */
    }

    .mobile-subpanel .back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Fjalla One';
    font-size: 17px;
    padding: 18px;
    border-bottom: 1px solid #eee;    
}

    .mobile-subpanel ul li a {
        padding: 18px;
        display: block;
        border-bottom: 1px solid #eee;
        font-size: 16px;
        font-family:Roboto, sans-serif;
    }
}

/* ============================
   OVERLAY
   ============================ */
@media (max-width: 1024px) {

    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.45);
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s ease;
        z-index: 99998; /* sotto menu e subpanel */
    }

    .mobile-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }
}

/* Contenitore recensioni nella pagina prodotto */
.product-reviews-overview {
    margin-top: 15px;
    padding: 15px 0;
    border-top: 1px solid #eee;
}

/* Stelle */
.product-review-box .rating {
    font-size: 20px; /* leggermente più grande */
    line-height: 1;
}

.product-review-box .rating div {
    filter: drop-shadow(0 0 3px rgba(225,44,95,0.25)); /* glow rosa soft */
}

/* Testo accanto alle stelle */
.product-review-box .rating-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Link recensioni */
.product-review-box .product-review-links a {
    font-family: 'Fjalla One', sans-serif;
    text-transform: uppercase;
    color: #E12C5F;
    font-size: 14px;
    transition: all .25s ease;
}

.product-review-box .product-review-links a:hover {
    color: #141617;
}

/* Pulsante scrivi recensione (versione luxury) */
.luxury-review-button {
    display: inline-block;
    background-color: #E12C5F;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 4px;
    font-family: 'Fjalla One', sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    margin-left: 10px;
    transition: all .25s ease;
}

.luxury-review-button:hover {
    background-color: #141617;
}
.product-review-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

/* Link "X recensioni" */
.product-review-links > a:first-child {
    font-size: 14px;
    color: #141617;
    font-family: 'Roboto', sans-serif;
}

/* Pulsante luxury */
.luxury-review-button {
    display: inline-block;
    background-color: #E12C5F;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 4px;
    font-family: 'Fjalla One', sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    transition: all .25s ease;
}

.luxury-review-button:hover {
    background-color: #141617;
}
.luxury-review-count {
    display: inline-block;
    background-color: #141617;
    color: #fff !important;
    padding: 8px 14px;
    border-radius: 4px;
    font-family: 'Fjalla One', sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all .25s ease;
}

.luxury-review-count:hover {
    background-color: #E12C5F;
}
.rating-stars {
    display: flex;
    gap: 8px;
    font-size: 40px;
    margin-top: 8px;
}

.rating-stars input {
    display: none;
}

.rating-stars label {
    color: #ccc;
    cursor: pointer;
    transition: color .25s ease, transform .15s ease;
}

/* Hover: stelle rosa */
.rating-stars label:hover,
.rating-stars label:hover ~ label {
    color: #E12C5F;
}

/* Selezione: stelle rosa */
.rating-stars input:checked ~ label {
    color: #E12C5F;
}

/* Effetto premium al click */
.rating-stars label:active {
    transform: scale(0.92);
}
.rating-stars {
    display: flex;
    justify-content: center; /* CENTRA LE STELLE */
    gap: 8px;
    font-size: 40px;
    margin-top: 8px;
}
.product-review-list .review-item {
    padding: 25px 20px;
    margin-bottom: 25px;
    border: 1px solid #eee;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* Titolo recensione */
.product-review-list .review-title {
    font-family: 'Fjalla One', sans-serif;
    font-size: 18px;
    margin-bottom: 6px;
    color: #141617;
}

/* Nome + data */
.product-review-list .review-info {
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
}

/* Testo recensione */
.product-review-list .review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

/* Stelle */
.product-review-list .rating {
    font-size: 20px;
    color: #E12C5F;
    margin-bottom: 10px;
}

/* Domanda "Questa recensione è stata utile?" */
.product-review-list .review-helpfulness {
    margin-top: 10px;
    font-size: 14px;
    color: #141617;
}

/* Spaziatura generale */
.product-review-list {
    margin-top: 30px;
}
/* Contenitore generale recensioni */
.product-review-list {
    display: grid;
    grid-template-columns: 1fr 1fr; /* DUE COLONNE */
    gap: 25px;
    margin-top: 30px;
}

/* Card recensione */
.product-review-list .review-item {
    padding: 25px 20px;
    border: 1px solid #eee;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.product-review-list .review-item:not(:last-child) {
    border-bottom: 1px solid #ddd;
}

/* Stelle */
.product-review-list .rating {
    font-size: 20px;
    color: #E12C5F;
    margin-bottom: 10px;
}

/* Titolo recensione */
.product-review-list .review-title {
    font-family: 'Fjalla One', sans-serif;
    font-size: 18px;
    margin-bottom: 6px;
    color: #141617;
}

/* Nome + data */
.product-review-list .review-info {
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
}

/* Testo recensione */
.product-review-list .review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

/* Domanda utilità */
.product-review-list .review-helpfulness {
    margin-top: 10px;
    font-size: 14px;
    color: #141617;
}

/* Responsivo: torna a 1 colonna su mobile */
@media (max-width: 768px) {
    .product-review-list {
        grid-template-columns: 1fr;
    }
}

/* ================================
   SUN&SERVICE — INTRO TEXT LUXURY
   ================================ */

.ss-intro-text {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #141617;
    margin-bottom: 35px;
}

.ss-intro-text p {
    margin-bottom: 18px;
}

.ss-intro-text strong {
    color: #E12C5F;
    font-weight: normal;
}
/* Tabella */
table.ninja_footable {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* Header */
table.ninja_footable thead th {
    background: #E12C5F;
    color: #ffffff;
    font-weight: 600;
    padding: 14px 12px;
    font-size: 15px;
    letter-spacing: 0.3px;
}

/* Celle */
table.ninja_footable tbody td {
    padding: 14px 12px;
    font-size: 15px;
    color: #141617;
    border-bottom: 1px solid #f0f0f0;
}

/* Righe alternate */
table.ninja_footable tbody tr:nth-child(even) {
    background: #fafafa;
}

/* Hover elegante */
@media (min-width: 992px) {
    table.ninja_footable tbody tr:hover {
        background: #ffe6ee;
        transition: 0.25s ease;
    }
}

/* Colonna codice premium */
td.ninja_clmn_nm_codice {
    font-weight: 600;
    color: #E12C5F;
    text-align: right;
}

/* Mobile */
@media (max-width: 768px) {
    table.ninja_footable tbody td {
        padding: 12px 10px;
        font-size: 14px;
    }

    table.ninja_footable {
        border-radius: 0;
        box-shadow: none;
    }
}

/* ============================================
   SUN&SERVICE — LISTA ORIZZONTALE LUXURY
   ============================================ */

.ss-list-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #141617;
    margin-bottom: 35px;
}

.ss-list-horizontal span {
    position: relative;
    padding-right: 18px;
    white-space: nowrap;
}

/* Pallino separatore */
.ss-list-horizontal span::after {
    content: "•";
    position: absolute;
    right: 4px;
    color: #E12C5F;
    font-weight: 700;
}

/* Rimuove il pallino dall’ultimo elemento */
.ss-list-horizontal span:last-child::after {
    content: "";
}

/* Mobile */
@media (max-width: 768px) {
    .ss-list-horizontal {
        font-size: 15px;
        gap: 8px 14px;
    }
}
/* ============================================
   SUN&SERVICE — CATEGORY BOXES LUXURY STYLE
   ============================================ */

.ss-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
    font-family: 'Roboto', sans-serif;
}

.ss-cat-box {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 25px 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ss-cat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 18px rgba(225,44,95,0.18);
}

.ss-cat-title {
    font-size: 24px;
    font-weight: 700;
    color: #E12C5F;
    margin-bottom: 12px;
}

.ss-cat-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #141617;
}
/* ============================================
   SUN&SERVICE — SCHEDA TECNICA LUXURY STYLE
   ============================================ */

.ss-tech-title {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #E12C5F;
    margin: 30px 0 18px;
}

.ss-tech-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.ss-tech-table td {
    padding: 14px 16px;
    font-size: 16px;
    color: #141617;
    border-bottom: 1px solid #f0f0f0;
}

.ss-tech-table tr:nth-child(even) {
    background: #fafafa;
}

.ss-tech-table tr:last-child td {
    border-bottom: none;
}

/* Mobile */
@media (max-width: 768px) {
    .ss-tech-table td {
        padding: 12px 14px;
        font-size: 15px;
    }
}

/* ============================================================
   SUN&SERVICE — PRODUCT TAGS LUXURY UPGRADE
   ============================================================ */

.product-tags-list {
    font-size: 0; /* reset */
    background: #f5f5f5;
    padding: 20px 25px;
    border-radius: 8px;
}

.product-tags-list li {
    display: inline-block;
    margin: 6px 8px;
    font-size: 14px; /* restore */
}

.product-tags-list a {
    display: inline-block;
    padding: 6px 14px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-family: 'Roboto', sans-serif;
    color: #141617;
    line-height: 20px;
    transition: all 0.25s ease;
}

/* Hover premium */
.product-tags-list a:hover {
    background: #E12C5F;
    border-color: #E12C5F;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(225,44,95,0.25);
}

/* Rimuove eventuali separatori (se presenti in alcuni temi) */
.product-tags-list li.separator {
    display: none !important;
}

/* ============================================================
   SUN&SERVICE — BLOG LUXURY UPGRADE (SEZIONE ARTICOLI)
   ============================================================ */

/* BOX ARTICOLO */
.blog-posts .post {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 40px;
    margin-bottom: 35px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    border-left: 5px solid #E12C5F;
}

/* TITOLO ARTICOLO */
.blog-posts .post-title {
    font-size: 28px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 12px;
    font-family: 'Roboto', sans-serif;
}

/* DATA */
.blog-posts .post-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
    text-align: left;
}

/* TESTO */
.blog-posts .post-body {
    padding: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    font-family: 'Roboto', sans-serif;
}

/* TAG */
.blog-posts .tags {
    margin-top: 25px;
    text-align: left;
}

.blog-posts .tags li {
    display: inline-block;
    background: #fff7f9;
    border: 1px solid #E12C5F;
    color: #E12C5F;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-family: 'Roboto', sans-serif;
}

/* PULSANTE DETTAGLI */
.blog-posts .post .buttons a {
    display: inline-block;
    background: #E12C5F;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 20px;
    position: relative;
    left: 0;
    transition: all 0.2s ease-in-out;
}

.blog-posts .post .buttons a:hover {
    background: #c0204d;
}

/* RIMUOVO ICONA VECCHIA */
.blog-posts .post .buttons a:before {
    display: none;
}

/* ============================================================
   SUN&SERVICE — BLOGPOST PAGE LUXURY UPGRADE
   ============================================================ */

/* CONTENITORE PRINCIPALE */
.blogpost-page {
    background: #ffffff;
    max-width: 900px;
    margin: 40px auto;
    padding: 40px 50px;
    border-radius: 14px;
    box-shadow: 0 4px 22px rgba(0,0,0,0.06);
    border-left: 6px solid #E12C5F;
}

/* TITOLO */
.blogpost-page .page-title h1 {
    font-size: 32px;
    font-weight: 600;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
}

/* DATA */
.blogpost-page .post-date {
    text-align: center;
    color: #888;
    font-size: 15px;
    margin-bottom: 30px;
}

/* TESTO ARTICOLO */
.blogpost-page .post-body {
    padding: 0;
    font-size: 18px;
    line-height: 1.75;
    color: #333;
    font-family: 'Roboto', sans-serif;
}

/* TAG */
.blogpost-page .tags {
    margin-top: 35px;
    text-align: left;
}

.blogpost-page .tags li {
    display: inline-block;
    background: #fff7f9;
    border: 1px solid #E12C5F;
    color: #E12C5F;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 14px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-family: 'Roboto', sans-serif;
}

/* PULSANTE TORNA INDIETRO */
.blogpost-page .back-button {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    background: #E12C5F;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease-in-out;
}

.blogpost-page .back-button:hover {
    background: #c0204d;
}

/* RIMUOVO ICONA VECCHIA */
.blogpost-page .back-button:before {
    display: none;
}

/* ===== SUN&SERVICE LUXURY WELCOME BOX ===== */

.ss-box-luxury-welcome {
    max-width: 700px;
    margin: 0 auto 25px auto;
    padding: 22px 28px;
    background: #ffffff;
    border-left: 5px solid #E12C5F;
    border-radius: 10px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.ss-box-luxury-welcome p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.ss-box-luxury-welcome strong {
    color: #E12C5F;
    font-weight:normal;
    font-size: 18px;
}

/* ===== TOGGLE PRODUTTORI LUXURY ===== */

.ss-produttori-toggle {
    border: none;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
}

/* Header cliccabile (solo mobile) */
.ss-produttori-header {
    background: #f7f7f7;
    padding: 14px 18px;
    font-size: 18px;
    font-weight: 600;
    color: #E12C5F;
    display: none; /* nascosto su desktop */
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.ss-produttori-arrow {
    font-size: 22px;
    transition: transform 0.2s ease;
}

/* Contenuto */
.ss-produttori-content {
    padding: 0;
}

/* MOBILE: attiva il toggle */
@media (max-width: 768px) {

    .ss-produttori-header {
        display: flex;
    }

    .ss-produttori-content {
        display: none; /* chiuso di default */
    }

    .ss-produttori-toggle.open .ss-produttori-content {
        display: block;
    }

    .ss-produttori-toggle.open .ss-produttori-arrow {
        transform: rotate(45deg);
    }
}

/* ===== SUN&SERVICE REGISTER BOX LUXURY ===== */

.ss-register-box {
    max-width: 700px;
    margin: 30px auto;
    padding: 25px 20px;
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.ss-register-text {
    font-size: 17px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ss-register-btn {
    display: inline-block;
    background: #E12C5F;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.ss-register-btn:hover {
    background: #c0204f;
    transform: translateY(-2px);
}

/* ===== SUN&SERVICE WHATSAPP LUXURY ===== */

.ss-whatsapp-box {
    max-width: 700px;
    margin: 30px auto;
    padding: 25px 20px;
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.ss-whatsapp-text {
    font-size: 17px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
}

.ss-whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.ss-whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

.ss-whatsapp-number {
    margin-top: 15px;
    font-size: 15px;
    color: #555;
}

.ss-whatsapp-number strong {
    color: #E12C5F;
}

/* ===== SUN&SERVICE PAYPAL 3X LUXURY ===== */

.ss-paypal-3x {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    border: 1px solid #eee;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    max-width: 700px;
    margin: 40px auto;
}

.ss-paypal-3x-left {
    flex-shrink: 0;
}

.ss-paypal-logo {
    width: 90px;
    height: auto;
    opacity: 0.9;
}

.ss-paypal-3x-right h3 {
    font-size: 20px;
    color: #E12C5F;
    margin-bottom: 6px;
    font-weight: 600;
}

.ss-paypal-3x-right p {
    font-size: 15px;
    color: #444;
    margin-bottom: 10px;
    line-height: 1.5;
}
/* ===== SUN&SERVICE PAYPAL NOTE LUXURY ===== */

.ss-paypal-note {
    max-width: 700px;
    margin: 15px auto 0 auto;
    padding: 15px 20px;
    background: #fff7f9;
    border-left: 4px solid #E12C5F;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.ss-paypal-note strong {
    color: #E12C5F;
    font-weight: normal;
}


/* Mobile */
@media (max-width: 768px) {
    .ss-paypal-3x {
        flex-direction: column;
        text-align: center;
    }

    .ss-paypal-logo {
        width: 80px;
    }
}

/* ===== SUN&SERVICE 404 LUXURY ===== */

.ss-404 {
    max-width: 700px;
    margin: 80px auto;
    padding: 20px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.ss-404-icon {
    font-size: 90px;
    font-weight: 700;
    color: #E12C5F;
    opacity: 0.15;
    letter-spacing: 5px;
    margin-bottom: -20px;
}

.ss-404-title {
    font-size: 32px;
    color: #E12C5F;
    margin-bottom: 20px;
    font-weight: 600;
}

.ss-404-text {
    font-size: 18px;
    color: #141617;
    line-height: 1.7;
    margin-bottom: 35px;
}

.ss-404-actions {
    margin-top: 20px;
}

.ss-404-btn {
    display: inline-block;
    background: #fff;
    color: #fff;
    padding: 14px 30px;
    border-radius: 4px;
    border:1px solid #787878;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.15s ease;}

.ss-404-btn:hover {
    background: #f5F5F5;
    transform:none;
}

.ss-404-link {
    display: block;
    margin-top: 15px;
    color: #E12C5F;
    font-size: 16px;
    text-decoration: underline;
}

/* ===== SUN&SERVICE FAQ LUXURY ===== */

.ss-faq-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 10px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.ss-faq-title {
    text-align: center;
    font-size: 28px;
    color: #E12C5F;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.ss-faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.ss-faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 18px;
    padding: 10px 0;
    cursor: pointer;
    color: #141617;
    font-weight: 600;
    transition: color 0.2s ease;
}

.ss-faq-question:hover {
    color: #E12C5F;
}

.ss-faq-answer {
    display: none;
    padding: 10px 0;
    color: #444;
    line-height: 1.6;
}

.ss-faq-item.active .ss-faq-answer {
    display: block;
}

/* ============================================
   SUN&SERVICE LUXURY — SITEMAP
   Accenti #E12C5F, layout premium, zero rosa
   ============================================ */

/* Contenitore generale */
.ss-luxury-sitemap {
    padding: 20px 10px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* Titolo principale */
.ss-sitemap-title {
    font-size: 28px;
    color: #E12C5F;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

/* Descrizione */
.ss-sitemap-description {
    text-align: center;
    margin-bottom: 30px;
    font-size: 15px;
    color: #555;
}

/* Sezioni */
.ss-sitemap-section {
    margin-bottom: 40px;
}

/* Titoli sezione */
.ss-sitemap-section-title {
    font-size: 20px;
    color: #222;
    border-left: 4px solid #E12C5F;
    padding-left: 10px;
    margin-bottom: 15px;
}

/* Liste */
.ss-sitemap-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    line-height: 1.8;
}

/* Link eleganti (NO rosa) */
.ss-sitemap-list li a {
    color: #444; /* elegante, leggibile */
    text-decoration: none;
    font-weight: 500;
}

.ss-sitemap-list li a:hover {
    color: #E12C5F; /* accento premium */
    text-decoration: underline;
}

/* Colonne responsive */
.ss-columns {
    columns: 2;
    column-gap: 40px;
}

.home-blog-section {
    margin: 60px 0;
}

.home-blog-title {
    font-family: 'Fjalla One', sans-serif;
    font-size: 40px;
    font-weight:normal;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #2c2c2c;
}
/* Stile titolo identico a INFOPOINT / BLOG */
.home-blog-title {
    padding: 8px 0;
    margin: 0 0 30px;
    border-bottom: 1px solid #d4d4d4;
    text-align: center;
    position: relative;
    color: #2c2c2c;
    font: normal 40px 'Fjalla One', sans-serif;
    text-transform: uppercase;
}

.home-blog-title:after {
    content: '';
    width: 75px;
    height: 3px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -2px;
    background: #E12C5F;
    transform: skewX(-30deg);
}

.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.home-blog-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform .2s ease;
}

.home-blog-item:hover {
    transform:none;
}

.home-blog-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.home-blog-item-title {
    font-family: 'Fjalla One', sans-serif;
    font-size: 20px;
    font-weight: normal;
    padding: 15px;
    color: #2c2c2c;
}

.home-blog-excerpt {
    font-family: 'Roboto', sans-serif !important;
    padding: 0 15px 20px;
    font-size: 14px;
    opacity: .8;
}
.home-blog-item p,
.home-blog-item div {
    font-family: 'Roboto', sans-serif !important;
}
/* LINK BLOG */
.home-blog-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.home-blog-item {
    transition: all .25s ease;
    box-shadow: 0 0 0 rgba(0,0,0,0);
}

.home-blog-link:hover .home-blog-item {
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
    transition: all .25s ease;
}

.blog-more {
    margin-top: 12px;
    font-weight: 600;
    color: #E12C5F;
    text-align: right;
    font-size: 15px;
    transition: all .2s ease;
    text-transform: uppercase;
}

.home-blog-link:hover .blog-more {
    color: #c01f4c;
    transform: translateX(4px);
}

/* TOGGLE BLOG */

.year-header {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    padding: 4px 0;
}

.year-header .toggle {
    font-weight: bold;
    color: #E12C5F;
}
/* MOBILE: impaginazione verticale e leggibile */
@media (max-width: 9000px) {

    .home-blog-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

       .home-blog-section .home-blog-grid .home-blog-item {
        background: #ffffff !important;
        padding: 18px !important;
        border-radius: 8px !important;
        box-shadow: 0 3px 10px rgba(0,0,0,0.10) !important;
        display: block !important;
        margin-bottom: 20px !important;
    }
    
    .home-blog-date {
        font-size: 13px;
        color:#E12C5F;
        margin-bottom: 8px;
    }

    .home-blog-item-title {
        font-size: 20px;
        font-weight: normal;
        line-height: 1.25;
        margin-bottom: 10px;
        font-family: 'Fjalla One', sans-serif;
    }

    .home-blog-excerpt {
        font-size: 15px;
        line-height: 1.55;
        font-family: 'Roboto', sans-serif !important;
        color: #444;
        margin-bottom: 10px;
    }

    .home-blog-all-btn {
        display: inline-block;
        width: 100%;
        text-align: center;
        padding: 12px 0;
        font-size: 16px;
        border-radius: 6px;
    }
}
/*********** AJAX ***********/
.ajax-loading-block-window{
    position: fixed;
	left:45%;
    top: 50%;
    width: 100px;
    height: 100px;
    margin:50px 0 0 50px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #E12C5F;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
	z-index: 9999;
}
.ajax-loading-block-window:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #E12C5F;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
.ajax-loading-block-window:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #E12C5F;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/*********** HEADER ***********/
.header-link-wrapper a:before {
    width: 30px !important;
    height: 38px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    text-align: center;
    vertical-align: top;
}
.ico-account:before {
    font-family: "venture-font";
    text-transform: none;
    content: "h";
    width: 25px;
    font-size: 13px;
    display: inline-block;
}
.ico-register:before {
    font-family: "venture-font";
    text-transform: none;
    content: "k";
    width: 25px;
    font-size: 13px;
    display: inline-block;
}
.header-links {
}
.ico-login:before{
	font-family:"venture-font";text-transform:none;content:"d";width:25px;font-size:12px;display:inline-block;
}
.ico-logout:before {
	font-family:"venture-font";text-transform:none;content:"i";width:25px;font-size:12px;display:inline-block;
}
.ico-inbox:before {
	font-family:"venture-font";text-transform:none;content:"j";width:25px;font-size:12px;display:inline-block
}
.ico-wishlist:before {
	font-family: "venture-font";
    text-transform: none;
    content: "f";
    width: 25px;
    font-size: 12px;
    display: inline-block;
    
}
/*** COLUMN ***/

.category-page-body .side-2 {
    width: 23.6%;
    margin-top: 0;
}
.category-page-body .page-body {
    width: 100%;
}

.block {
	float: none;
	width: auto;
	margin: 0 0 20px;
}
.block .title {
	cursor: default;
	font-size: 18px;
	padding: 0 3px 8px;
	border-bottom: 1px solid #d4d4d4;
	position: relative;
	background: #f5f5f5;
}
.block-manufacturer-navigation .title,
.block-vendor-navigation .title,
.block-popular-tags .title {
    padding: 0px 80px 8px 3px;
}

.block .title:before{
    content: '';
    width: 75px;
    height: 3px;
    position: absolute;
    top: auto;
    left: 0;
    right: auto;
    bottom: -2px;
    margin: auto;
    background: #E12C5F;
    -o-transform: skewX(30deg);
    -webkit-transform: skewX(30deg);
    -moz-transform: skewX(30deg);
    -ms-transform: skewX(30deg);
    transform: skewX(30deg);
} 
.block .listbox {
	display: block !important;
    border: none;
    background: none;
}
.block .listbox:before {
    display: none;
}
.block .list li {
    position: relative;
}
.block .list a,
.block .list strong {
    padding: 8px 20px 8px 3px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
	font-family: 'Fjalla One', sans-serif;
    text-transform: uppercase;
}
.block .list a:hover {
    color: #E12C5F;
}
.sublist-toggle-button {
    display: block;
    width: 19px;
    height: 18px;
    cursor: pointer;
    background: #e7e7e7;
    position: absolute;
    top: 8.5px;
    right: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.sublist-toggle-button:hover {
    background: #d5d5d5;
}
.sublist-toggle-button:before {
    content: "y";
    font-family: "venture-font";
    text-transform: none;
    font-size: 8px;
    text-align: center;
    width: 7px;
    height: 7px;
    color: #808080;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.sublist-toggle-button.open {
    background: #fff;
}
.sublist-toggle-button.open:before {
    content: "x";
    color: #E12C5F;
}
.block .sublist {
    padding: 0 0 0 15px;
}
.block .view-all {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
}
.block .view-all a {
    display: block;
    padding: 2px 13px 2px 0;
    border-top: none;
    color: #141617;
    font-size: 13px;
    position: relative;
}
.block .view-all a:after {
    font-family: "venture-font";
    text-transform: none;
    content: "q";
    font-size: 7px;
    position: absolute;
    top: 0;
    right: 0;
    height: 20px;
    line-height: 20px;
}
.block-recently-viewed-products .listbox .list {
    padding: 20px 0;
}
.block-recently-viewed-products li {
    background: #fff;
    margin: 0 0 10px;
    display: table;
    width: 100%;
}
.block .list .product-picture {
    display: table-cell;
    width: 35%;
	vertical-align: middle;
    padding: 5px;
}
.block .list  .product-picture img {
	display: block;
	max-width: 100%;
}
.block .list .product-name {
	display: table-cell;
	width: 75%;
    padding: 10px;
	vertical-align: middle;
}
.block .list .product-name span {
    display: block;
}
.block .list .product-name .name {
    max-height: 38px;
    overflow: hidden;
    color: #2c2c2c;
    margin: 0 0 3px;
}
.block .list .product-name .price {
    color: #f3cc2e;
}
.block .tags {
    padding: 15px 0;
}
.block .tags a{
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.block .tags a:hover {
    color: #2c2c2c;
}
.block .poll strong {
    padding: 8px 3px;
}
.block .poll-options li, 
.block .poll-results li {
    margin: 0 3px;
}
.block .poll .buttons {
    margin: 0;
}
.block .poll .buttons, 
.block .poll-total-votes {
    padding: 8px 3px;
}
.block .poll .buttons input {
    padding: 8px 3px;
    background: none;
    color: #141617;
}
.block .poll-options,
.block .poll-results {
    margin: 0;
}
.block .poll .buttons input:hover {
    background: none !important;
    color: #141617;
}

/*** FORUM & PROFILE ***/


.forum-actions,
.topic-actions {
	margin: 0 0 10px;
	font-size: 0;
    text-align: center;
}
.forum-actions .actions a,
.topic-actions .actions a {
	display: inline-block;
    text-transform: none;
    color: #141617;
    margin: 0 10px 5px;
	padding: 7px 7px 7px 20px;
	font-size: 14px;
    position: relative;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.forum-actions .actions a:hover,
.topic-actions .actions a:hover {
    color: #2c2c2c;
}
.forum-actions .actions a:before,
.topic-actions .actions a:before {
    font-family: "venture-font";
    content: "";
    position: absolute;
    left: 0;
}
.forum-actions .actions .new-topic:before {
    top: 7px;
    content: "0";
    font-size: 15px;
}
.forum-actions .actions .watch-forum,
.topic-actions .actions .watch-forum {
    padding-left: 21px;
}
.forum-actions .actions .watch-forum:before,
.topic-actions .actions .watch-forum:before {
    top: 8px;
    content: "Z";
}
.forum-actions .pager.upper,
.topic-actions .pager.upper {
	display: none;
}
.topic-actions a.reply-topic-button:before {
    top: 8px;
    content: "Y";
}
.topic-actions a.watch-topic-button:before {
    top: 8px;
    content: "Z";
}
.topic-actions a.move-topic-button:before {
    top: 8px;
    content: "X";
}
.topic-actions a.edit-topic-button:before {
    top: 9px;
    content: "k";
    font-size: 12px;
}
.topic-actions a.delete-topic-button:before {
    top: 8px;
    content: "s";
    font-size: 13px;
}
.topic-actions.lower .actions {
	display: none;
}


.topic-post .post-text {
    width: 100%;
    max-width: 100%;
    font-family: 'Roboto',sans-serif;
    color: #141617;
    padding: 10px;
}

/*=====================================================
    
    DESKTOP 1200

=====================================================*/

@media all and (min-width: 1201px) {

/* GLOBAL STYLES */

.mobile {
    display: none !important;
}

/* LEFT/RIGHT COLUMN */

.category-page-body .side-2 {
    width: 23.6%;
    margin-top: 0;
}
.category-page-body .page-body {
    width: 100%;
}

/* CATEGORY PAGE & GRIDS */

.product-grid .item-box .product-item:hover:before {
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
}

.item-box .additional-price-info {
    /*display: block;*/
    position: absolute;
    bottom: 5px;
    left: 25px;
    line-height: 20px;
    height: 20px;
    right: 55px;
    overflow: hidden;
}

/* PRODUCT PAGE */

.gallery {
	float: left;
	width: 50%;
} 
.gallery .picture {
  
}
.gallery .picture {
    width: 80%;
    float: right;
    margin: 0 0 40px;
}
.gallery .picture:only-child {
    width: 100%;
    float: none;
}
.gallery .picture-thumbs {
    width: 16%;
    float: left;
}
.gallery .thumb-item {
    width: 100%;
    margin: 0 0 20px;
}
.gallery .thumb-item:last-child {
    margin: 0;
}
.gallery .thumb-item {
   
}

.wishlist-content .button-2 {
        width: auto;
    }
 
.product-review-links a:last-child {
    color: #E12C5F;
}

/* WISHLIST & COMPARE LIST */

.wishlist-content .buttons {
	overflow: hidden;
}
.wishlist-content .button-2 {
    float: left;
	margin: 0 5px 0 0;
}
.wishlist-content .wishlist-add-to-cart-button {
    float: right;
    margin: 0;
}
/* SEARCH & SITEMAP */

.sitemap-page .entity {
    padding: 50px;
}
}
/* REVIEW PAGE 768*/

@media all and (min-width: 768px) {

/* GLOBAL STYLES */

.page {
	clear: both;
	text-align: left;
}

.product-review-item {
    padding: 30px 7% 30px 21%;
    position: relative;
    min-height: 200px;
}
.product-review-item .product-review-box {
    position: absolute;
    left: 2%;
    top: 30px;
    width: 15%;
    overflow: hidden;
}
.product-review-item .product-review-box .rating {
    float: right;
}
.product-review-item .review-info {
    position: absolute;
    left: 2%;
    top: 68px;
    width: 15%;
    text-align: right;
    font-size: 13px;
}
.product-review-item .review-info > span {
    display: block;
    margin: 0 0 5px;
}
.product-review-item .review-info > span.separator {
    display: none;
}
.product-review-item .review-info .user label,
.product-review-item .review-info .date label  {
    display: none;
}
.product-review-item .review-info a {
    padding: 0;
}
.product-review-item .product-review-helpfulness {
    text-align: right;
}

/* ===== ISOLAMENTO FAQ DAL TEMA ===== */
.ss-faq-page {
    text-align: left !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

/* annulla il centramento forzato del tema */
.ss-faq-page * {
    text-align: left !important;
}

/* ripristina comportamento accordion */
.ss-faq-answer {
    display: none !important;
}

.ss-faq-item.active .ss-faq-answer {
    display: block !important;
}

/* bottoni sempre cliccabili */
.ss-faq-question {
    display: block !important;
    width: 100% !important;
    cursor: pointer !important;
}
